home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Merciful 5
/
Merciful - Disc 5.iso
/
software
/
r
/
real_3d
/
real3dv3.3b.dms
/
real3dv3.3b.adf
/
RPL.LZH
/
RPL
/
busyreq.rpl
< prev
next >
Wrap
Text File
|
1995-04-18
|
516b
|
27 lines
( Simple BusyRequester Example
( To Try this, open RPL Window and enter the following command
( "busyreq.rpl" LOAD BusyTest
( ------------------------------------------------------------
VARIABLE BusyHnd
: BusyTest
"Doing Nothing ..." BUSY_OPEN BusyHnd !
1000 0 DO
BusyHnd @ ( fetch handle
0 ( new title
I 10 / ( value 0 ... 100
BUSY_UPDATE
BusyHnd @ ( fetch handle
BUSY_CANCEL ( check if cancelled
IF
LEAVE
ENDIF
LOOP
BusyHnd @ BUSY_CLOSE
;